home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
UNIXTOOL
/
GNU
/
TILEFORTH
/
TILE
/
TILE~
/
!Tile
/
test
/
dialog
< prev
next >
Wrap
Text File
|
1992-04-20
|
509b
|
35 lines
.( Loading dialog box test code... ) cr
string dialog
( Dialog box handle )
variable handle
( Event handler for box )
: buttons ( field -- ) 3 handle @ setnumeric ;
( Create dialog box, assign event handler, store handle )
" dialog" ' buttons new handle !
( Set some fields, and display box )
: showeg
0 2 handle @ setnumeric
100 3 handle @ setnumeric
handle @ show ;
: hideeg
handle @ hide ;
: killeg
handle @ dispose ;
: showtest
showeg
begin
(event) process
0 until ;